home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / perl5 / URI / rsync.pm < prev    next >
Text File  |  2008-04-02  |  197b  |  13 lines

  1. package URI::rsync;  # http://rsync.samba.org/
  2.  
  3. # rsync://[USER@]HOST[:PORT]/SRC
  4.  
  5. require URI::_server;
  6. require URI::_userpass;
  7.  
  8. @ISA=qw(URI::_server URI::_userpass);
  9.  
  10. sub default_port { 873 }
  11.  
  12. 1;
  13.